home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / COWS / Fred / COWSTestBench.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  794 b   |  46 lines

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSTestBench.h
  5.     Version 1.3
  6.     
  7.     Specially Modified for Fred!
  8.     
  9.     Sean Luke
  10.     
  11.     This object is just a front end to make the interpreter look pretty in this
  12.     example program...
  13.     
  14. */
  15.  
  16.  
  17.  
  18. #import <appkit/appkit.h>
  19. #import "COWSProtocols.h"
  20.  
  21. @interface COWSTestBench:Object <InterpreterToAppDelegate>
  22. {
  23.     id    library;
  24.     id    interpreter;
  25.     id    program;
  26.     id    matrix;
  27.     id    timedEntry;
  28.     id    repeats;
  29.     id    foreground;
  30.     id    locked;
  31.     id    fred;
  32. }
  33.  
  34. - setTimedEntry:sender;
  35. - revertTimedEntry:sender;
  36. - execute:sender;
  37. - load:sender;
  38. - loadAndExecute:sender;
  39. - print:sender;
  40. - stop:sender;
  41. - finishedInterpreting:(const char*)returnValue:(int)thisMessage:sender;
  42. - errorInterpreting:(int) thisError:(const char*)thisFunction:
  43.     (int)thisPosition:(const char*)thisString:sender;
  44.  
  45. @end
  46.